home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Suzy B Software 2
/
Suzy B Software CD-ROM 2 (1994).iso
/
extras
/
programm
/
gemfsc19
/
gemfsc19.lzh
/
GEMFBIND
/
VELLIPSE.S
< prev
next >
Wrap
Text File
|
1993-03-16
|
963b
|
39 lines
;*========================================================================
;* VDIFAST Public Domain VDI bindings.
;*========================================================================
;*------------------------------------------------------------------------
;* Ellipse.
;*------------------------------------------------------------------------
globl _v_ellipse
_v_ellipse:
; .cargs #8,handle.w,x.w,y.w,xradius.w,yradius.w
handle = 8
x = 10
y = 12
xradius = 14
yradius = 16
link a6,#0
; VContrl #11,#5,#2
move.w handle(a6),-(sp) ; contrl[6]
move.w #5,-(sp) ; contrl[5]
subq.l #2,sp ; contrl[4]
clr.l -(sp) ; contrl[3,2]
move.w #2,-(sp) ; contrl[1]
move.w #11,-(sp) ; contrl[0]
subq.l #8,sp ;* -> ptsout, intout
pea x(a6) ;* -> ptsin
subq.l #4,sp ;* -> intin
pea 16(sp) ;* -> contrl
jmp vdicall
end